@font-face {
	font-family: "hi";
	src: url("../font/himalaya/himalaya.ttf");
}

html{
    scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	font-family: Microsoft YaHei, Microsoft YaHei;
	/* font-weight: 400; */
	color: #333;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* For some Androids */
	/* 英文开启 */
	word-wrap: break-word !important;
	word-break: normal !important;
}

:root {
	--c: rgba(42, 84, 59, 1);
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.8s ease-in-out;
	--c_size: 0.16rem;
}

.main {
	justify-content: space-between;
	max-width: 12.48rem;
	/* width: 95%; */
	margin: 0 auto;
}

.in_main {
	width: 12.8rem;
	margin: 0 auto;
}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

html {
	font-size: 100px;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
}

ul {
	list-style: none;
}

input,
textarea {
	outline: 0;
	border: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	display: block;
}

hr {
	border: none;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}









/*多行溢出*/
.line1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
}

.line3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
}

.line4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 4;
}

.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}


/* 板块标题 */
.common_title {}


/* 内页标题 */
.inner_title {}


/* 水波纹效果 */
.btn-ripple {
	vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
	opacity: 1;
	position: relative;
	overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
	animation: ani_ripple 0.75s;
	z-index: 1;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}

	to {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}


/* 公共面包屑 */
.common_crumb .crumb_box {
	display: flex;
	align-items: center;
	color: #333;
}

.common_crumb .crumb_box img {
	width: .15rem;
	height: .15rem;
	margin-right: .05rem;
	object-fit: contain;
}

.common_crumb .crumb_box .road {
	display: flex;
	align-items: center;
	font-size: .16rem;
	color: #333333;
}

.common_crumb .crumb_box .road a {
	font-size: .16rem;
	color: #333333;
	margin: 0 0.03rem;
	width: auto;
}

.common_crumb .crumb_box .road span {
	display: block;
	max-width: 4.5rem;
	/* font-size: .18rem;
  color: #666666;
  font-weight: bold; */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #000089;
	margin: 0 0.03rem;
}




/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: #009fe8;
	cursor: pointer;
	object-fit: cover;
}

.hover_box:hover .scale_img {
	transform: scale(1.1);
}


/* hover-图片旋转向上位移 */
.rotate_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.rotate_box .rotate_img {
	transition: #009fe8
	object-fit: cover;
}

.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-0.1rem);
}




/* 页码 */
.page_box {
	width: fit-content;
	margin: 0 auto;
	margin-top: 0.6rem;
	display: flex;
	align-items: center;
}

.page_box .pages {
	display: flex;
	align-items: center;
}

.page_box .pages .item {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	margin-right: 0.15rem;
	border: 0.01rem solid #EEEEEE;
	border-radius: 0.02rem;
	text-align: center;
	line-height: 0.5rem;
	font-size: 0.14rem;
	cursor: pointer;
	color: #222222;
}

.page_box .pages span {
	border-color: transparent !important;
}

.page_box .pages .item:hover {

	background: #8E4223;
	color: white;
	border: none;

}

.page_box .pages .active {

	background: #8E4223;
	color: white;
	border: none;
}

.page_box .btn {
	display: block;
	/* width: 0.3rem; */
	height: 0.3rem;
	margin-right: 0.1rem;
	padding: 0 0.06rem;
	border: 0.01rem solid #EEEEEE;
	border-radius: 0.02rem;
	line-height: 0.3rem;
	font-size: 0.14rem;
	color: #222222;
	white-space: nowrap;
	cursor: pointer;
}

.page_box .btn:hover {

/* 	background: #8E4223;
	color: white; */

}

.page_box .prev {
	padding: 0 0.13rem;
}

.page_box .next {
	padding: 0 0.13rem;
}


/* b2 */

.page_box {
	width: fit-content;
	margin: 0 auto;
	margin-top: 0.1rem;
	display: flex;
	align-items: center;
}

.page_box .pages {
	display: flex;
	align-items: center;
}

.page_box .pages .item {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	margin-right: 0.1rem;
	border: 0.01rem solid #E5E5E5;
	background-color: #fff;
	border-radius: 0.01rem;
	text-align: center;
	line-height: 0.5rem;
	font-size: 0.18rem;
	color: #4D4D4D;
	cursor: pointer;
	border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
	overflow: hidden;
}

.page_box .pages .item:hover {
	    background-color: #29529c;
	color: white;
}

.page_box .pages .active {
	    background-color: #29529c;
	color: white;
}

.page_box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.1rem;
	cursor: pointer;
	overflow: hidden;
	border-color: transparent;
	font-family: '宋体';
	font-size: 0.2rem;
	font-weight: bold;
	color: rgba(42, 84, 59, 1);
}

.page_box .btn img {
	height: 0.18rem;
	object-fit: contain;
}

.page_box .btn:hover {
	/* background: #006AAD; */
}

.page_box .total {
	margin-right: 0.23rem;
	font-size: 0.14rem;
	color: #333333;
}

.page_box .toPage {
	font-size: 0.14rem;
	color: #333333;
}

.page_box .toPage input {
	width: 0.79rem;
	height: 0.32rem;
	margin: 0 0.1rem;
	padding: 0 0.1rem;
	border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
	border: 0.01rem solid #B3B3B3;
	outline: none;
	font-size: 0.14rem;
	color: #4D4D4D;
}




/* 轮播按钮组-按钮 */






.swiper-button-next,
.swiper-button-prev {
	width: 0.49rem;
	height: 0.49rem;
	padding: 0.08rem 0.09rem;
	border-radius: 100%;
	border: 0.01rem solid rgba(42, 84, 59, 1);
	right: 0.76rem;
	opacity: 1 !important;
	bottom: 0.8rem;
	top: auto;
	    left: 54%;
	position: absolute;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;

}


.swiper-button-next {
	left: 60%;
	right: 0rem;

}

.swiper-button-next::after,
.swiper-button-prev::after {
	content: '<';
	font-family: '宋体';
	font-size: 0.2rem;
	font-weight: bold;
	color: rgba(42, 84, 59, 1);

}

.swiper-button-next::after {
	content: '>';
}

/* 按钮 f */

/* 分页器 b */
.swiper-pagination {
	bottom: 0.74rem !important;
	padding-right: 0.05rem;
	text-align: right;
}

.swiper-pagination-bullet {
	width: 0.12rem;
	height: 0.12rem;
	background: #929597;
	margin-right: 0.1rem !important;
	margin-left: 0rem !important;
	opacity: 1 !important;

}

.swiper-pagination-bullet-active {

	background: #144E80;
}

/* 分页器  f*/






.c_tit {
	font-size: 0.4rem;
	color: #000000;
	/* line-height: 0.58rem; */
	width: auto;
	margin-bottom: 0.05rem;
	font-family: 'hi';
	/* text-align: center; */
}

.entit {
	font-weight: 400;
	font-size: 0.3rem;
	color: #252525;
	/* line-height: 0.28rem; */
	position: relative;
	width: auto;
	/* text-align: center; */
}

.entit::after {
	width: 0.48rem;
	height: 0.06rem;
	background: #29529c;
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
}



/* 面包屑 */
.detail_bread {
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    color: rgba(153, 153, 153, 1);
}
.detail_bread a {
    display: block;
    margin: 0 0.05rem;
    font-size: 0.16rem;
	width: auto;
      color: rgba(153, 153, 153, 1);
}
.detail_bread a span{
	color: rgba(51, 51, 51, 1);
}



@-webkit-keyframes rightan{
from
{
transform: translateY(-5px);
opacity:0;
}
to{
transform: translateY(5px);
opacity:1;
}
}
 .viewdown img{
-webkit-animation:rightan 1s infinite;
-webkit-animation-fill-mode:both;
}
 .viewdown{
	font-weight: 400;
	font-size: 0.14rem;
	color: #FFFFFF;
	position: absolute;
	bottom: 0.63rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: center;
}
 .viewdown span{
	width: 0.52rem;
	height: 0.52rem;
	border-radius: 100%;
	border: 0.01rem solid #fff;
	margin: 0 0.08rem;
}
 .viewdown img{
	width: 0.52rem;
	object-fit: contain;
	padding: 0.15rem;
}

@media screen and (max-width:1024px){
    .in_main{
        width: 94%;
        margin: auto;
    }
    .index_one{
        width: 95%;
        flex-direction: column-reverse;
    }
    .pro_contain2{
        padding-bottom: 0px;
    }
    .detail_bread{
        display: none;
    }
    .pro_contain1{
        padding-top: 0;
        padding-bottom: 20px;
    }
    .smell_top{
        text-align: left;
    }
    .smell_top .entit::after{
        right: auto;
    }
    .pro_debox .cer {
        font-size: 14px;
        padding: 5px 10px;
    }
    .pro_debox .tie{
    font-size: 14px !important;
    }
    .pro_debox .info p{
        font-size: 12px !important;
    }
    .pro_contain1{
        flex-direction: column;
    }
    .pro_debox .c_tit{
        margin-top:15px ;
        margin-bottom: 0 !important;
    }
    .smeil_bottom{
        margin-top: 10px;
    }
    .pro_debox .name{
        padding: 10px 0;
    }
    .smill_box .tit{
        margin-top: -10px;
    }
    .new_detail{
        padding-top:70px ;
    }
    .pro_contain1 .big_box{
        width: 100%;
    }
    .content2_bottomP{
        padding-bottom:20px ;
    }
    .content2_bottom .text p{
        padding-bottom: 10px;
    }
    .in_main{
        height: 100%;
    }

    .content2_bottom .text{
        height: 100%;
    }
    .content2_bottom .text p{
        height: 100%;
    }
    .content2_bottom .text p img{
        height: 100%;
    }
    .pro_contain2{
        min-height:55vh;
    }
    .new_detail{
        padding-top: 0;
    }
}